home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2001 December / pcwk12201b.iso / Wersje pelne i specjalne / Winamp 2.77 i 3.0beta / wasabi-sdk_beta1.exe / jnetlib / util.h < prev   
C/C++ Source or Header  |  2001-10-08  |  2KB  |  68 lines

  1. /*
  2.  
  3.   Nullsoft WASABI Source File License
  4.  
  5.   Copyright 1999-2001 Nullsoft, Inc.
  6.  
  7.     This software is provided 'as-is', without any express or implied
  8.     warranty.  In no event will the authors be held liable for any damages
  9.     arising from the use of this software.
  10.  
  11.     Permission is granted to anyone to use this software for any purpose,
  12.     including commercial applications, and to alter it and redistribute it
  13.     freely, subject to the following restrictions:
  14.  
  15.     1. The origin of this software must not be misrepresented; you must not
  16.        claim that you wrote the original software. If you use this software
  17.        in a product, an acknowledgment in the product documentation would be
  18.        appreciated but is not required.
  19.     2. Altered source versions must be plainly marked as such, and must not be
  20.        misrepresented as being the original software.
  21.     3. This notice may not be removed or altered from any source distribution.
  22.  
  23.  
  24.   Brennan Underwood
  25.   brennan@nullsoft.com
  26.  
  27. */
  28.  
  29. /*
  30. ** JNetLib
  31. ** Copyright (C) 2000-2001 Nullsoft, Inc.
  32. ** Author: Justin Frankel
  33. ** File: util.h - JNL interface for basic network utilities
  34. ** License: see jnetlib.h
  35. **
  36. ** routines you may be interested in:
  37. **   JNL::open_socketlib(); 
  38. **    opens the socket library. Call this once before using any network
  39. **    code. If you create a new thread, call this again. Only really an
  40. **    issue for Win32 support, but use it anyway for portability/
  41. **
  42. **   JNL::close_Socketlib();
  43. **    closes the socketlib. Call this when you're done with the network,
  44. **    after all your JNetLib objects have been destroyed.
  45. **
  46. **   unsigned long JNL::ipstr_to_addr(const char *cp); 
  47. **    gives you the integer representation of a ip address in dotted 
  48. **    decimal form.
  49. **
  50. **  JNL::addr_to_ipstr(unsigned long addr, char *host, int maxhostlen);
  51. **    gives you the dotted decimal notation of an integer ip address.
  52. **
  53. */
  54.  
  55. #ifndef _UTIL_H_
  56. #define _UTIL_H_
  57.  
  58. class JNL
  59. {
  60.   public:
  61.     static int open_socketlib();
  62.     static void close_socketlib();
  63.     static unsigned long ipstr_to_addr(const char *cp);
  64.     static void addr_to_ipstr(unsigned long addr, char *host, int maxhostlen);
  65. };
  66.  
  67. #endif //_UTIL_H_
  68.